???.data   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 8
rs 9.4285
c 1
b 0
f 0
1
var Remarkable = require('remarkable');
2
var md = new Remarkable({
3
    linkify: true,
4
    html: true
5
});
6
7
export default {
8
    data: function () {
9
        return {
10
            /**
11
             * Parse markdown.
12
             */
13
            md: md
14
        }
15
    },
16
}
17